home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Think Class Libraries / Intelligent classes 1.0 / CIntelligentDecorator.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-30  |  617 b   |  29 lines  |  [TEXT/KAHL]

  1. /****
  2.  * CIntelligentDecorator.h
  3.  *
  4.  *    This class makes the Decorator a little more intelligent.
  5.  *
  6.  *    Copyright © 1993 Quipus, by Mårten Sörliden.  All rights reserved.
  7.  *
  8.  ****/
  9.  
  10. #define _H_CIntelligentDecorator            /* Include this file only once */
  11.  
  12. #include <CDecorator.h>
  13.  
  14.  
  15. struct CIntelligentDecorator : CDecorator {
  16.  
  17. /** Construction and destruction methods **/
  18.     void        IIntelligentDecorator(void);
  19.     void        Dispose(void);
  20.  
  21. /** Accessing methods **/
  22.     short    GetWNum(void);
  23.  
  24. /** Window methods **/
  25.     void        SetFirstLocation(void);
  26.     void        PlaceNewWindow(CWindow *theWindow);
  27.     void        StaggerWindow(CWindow *theWindow);
  28. };
  29.